type crypto/tls.ticketKey

9 uses

	crypto/tls (current package)
		common.go#L734: 	sessionTicketKeys []ticketKey
		common.go#L737: 	autoSessionTicketKeys []ticketKey
		common.go#L755: type ticketKey struct {
		common.go#L768: func (c *Config) ticketKeyFromBytes(b [32]byte) (key ticketKey) {
		common.go#L850: 		c.sessionTicketKeys = []ticketKey{c.ticketKeyFromBytes(c.SessionTicketKey)}
		common.go#L864: func (c *Config) ticketKeys(configForClient *Config) []ticketKey {
		common.go#L906: 		valid := make([]ticketKey, 0, len(c.autoSessionTicketKeys)+1)
		common.go#L937: 	newKeys := make([]ticketKey, len(keys))
		conn.go#L70: 	ticketKeys []ticketKey